get contents by user
Fetch user-specific content from TabNews API by specifying username, page, per_page, and strategy to organize posts efficiently.
Instructions
get contents by user from tabnews api
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | The page number to get | |
per_page | No | The number of contents per page | |
strategy | No | The strategy to get the contents | |
username | Yes | The username to get the contents |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "The page number to get",
"type": "number"
},
"per_page": {
"description": "The number of contents per page",
"type": "number"
},
"strategy": {
"description": "The strategy to get the contents",
"enum": [
"relevant",
"new",
"old"
],
"type": "string"
},
"username": {
"description": "The username to get the contents",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}